home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / WINTUT2.ZIP / Tut2 / stdafx.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-03  |  178 b   |  8 lines

  1. #include <windows.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <stdio.h>
  5. #include <dos.h>
  6.  
  7. #define RANDOM( min, max ) ((rand() % (int)(((max)+1) - (min))) + (min))
  8.